Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
29 lines (22 loc) · 460 Bytes

3.1.15 - Coroutine::stats.md

File metadata and controls

29 lines (22 loc) · 460 Bytes

Coroutine::stats

获取协程状态

function \Swoole\Coroutine::stats() : array

需要4.0.1或更高版本

返回值 array

  • coroutine_num: 当前运行的协程数量
  • coroutine_peak_num: 当前运行的协程数量的峰值

需要4.0.5或更高版本

var_dump(Swoole\Coroutine::stats());

array(1) {
  ["c_stack_size"]=>
  int(2097152)
  ["coroutine_num"]=>
  int(132)
  ["coroutine_peak_num"]=>
  int(2)
}